home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre2.z / postgre2 / ref / postquel / removeindex < prev    next >
Encoding:
Text File  |  1992-08-27  |  558 b   |  25 lines

  1. .\" XXX standard disclaimer belongs here....
  2. .\" $Header: /private/postgres/ref/postquel/RCS/removeindex,v 1.2 1992/07/14 05:54:17 ptong Exp $
  3. .SP "REMOVE INDEX" COMMANDS 6/14/90
  4. .XA 2 "Remove Index"
  5. .uh NAME
  6. .lp
  7. remove index \*- removes an index from \*(PP
  8. .uh SYNOPSIS
  9. .lp
  10. .(l
  11. \fBremove index\fR index_name
  12. .)l
  13. .uh DESCRIPTION
  14. .lp
  15. This command drops an existing index from the \*(PP system.
  16. To execute this command you must be the owner of the index.
  17. .uh EXAMPLE
  18. .lp
  19. .nf
  20. .ft C
  21. /* this command will remove the EMP-INDEX index */
  22.  
  23. remove index emp_index
  24. .ft
  25.